home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / vnc_http.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  87 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10758);
  10.  script_version ("$Revision: 1.8 $");
  11. # script_cve_id("CVE-MAP-NOMATCH");
  12.  name["english"] = "Check for VNC HTTP";
  13.  name["francais"] = "Check for VNC HTPP";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The remote server is running VNC.
  18. VNC permits a console to be displayed remotely.
  19.  
  20. Solution: Disable VNC access from the network by 
  21. using a firewall, or stop VNC service if not needed.
  22.  
  23. Risk factor : Medium";
  24.  
  25.  
  26.  
  27.  desc["francais"] = "
  28. Le serveur distant fait tourner VNC.
  29. VNC permet d'acceder la console a distance.
  30.  
  31. Solution: ProtΘgez l'accΦs α VNC grace α un firewall,
  32. ou arretez le service VNC si il n'est pas desire.
  33.  
  34. Facteur de risque : Moyen";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "Detects the presence of VNC HTTP";
  40.  summary["francais"] = "VΘrifie la prΘsence de VNC HTTP";
  41.  
  42.  script_summary(english:summary["english"],
  43. francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com",
  49.                 francais:"Ce script est Copyright (C) 2001 Alert4Web.com");
  50.  family["english"] = "Backdoors";
  51.  family["francais"] = "Backdoors";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes");
  54.  script_require_ports("Services/www", 5800, 5801, 5802);
  55.  exit(0);
  56. }
  57.  
  58. #
  59. # The script code starts here
  60. #
  61. include("http_func.inc");
  62. include("misc_func.inc");
  63.  
  64. function probe(port)
  65. {
  66.  banner = get_http_banner(port:port);
  67.  if(banner)
  68.  {
  69.   if (("vncviewer.jar" >< banner) || ("vncviewer.class" >< banner))
  70.   {
  71.    security_warning(port);
  72.    set_kb_item(name:"www/vnc", value:TRUE);
  73.   }
  74.  }
  75. }
  76.  
  77.  
  78. ports = add_port_in_list(list:get_kb_list("Services/www"), port:5800);
  79. ports = add_port_in_list(list:ports, port:5801);
  80. ports = add_port_in_list(list:ports, port:5802);
  81.  
  82. foreach port (ports)
  83. {
  84.   probe(port:port);
  85. }
  86.  
  87.